home *** CD-ROM | disk | FTP | other *** search
- -- card: 2837 from stack: in
- -- bmap block id: 3734
- -- flags: 0000
- -- background id: 2742
- -- name:
- ----- HyperTalk script -----
- -- Change volume, zone, server, user, password, volpassword
- -- parameters below to meet your needs.
-
- on openStack
- global volume, zone, server, user, password, volpassword, result
- put "RENE" into volume
- put "*" into zone
- put "ROS-Server" into server
- put "rgaros" into user
- put "" into password
- put "" into volpassword
- end openStack
-
-
- -- part 1 (button)
- -- low flags: 00
- -- high flags: 8003
- -- rect: left=160 top=138 right=160 bottom=260
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Mount
- ----- HyperTalk script -----
- on mouseUp
- global volume, zone, server, user, password, volpassword, result
- set cursor to watch
- put servermount(volume,zone,server,user,password,volpassword) into result
- err
- end mouseUp
-
-
- -- part 3 (button)
- -- low flags: 00
- -- high flags: 8003
- -- rect: left=282 top=138 right=160 bottom=382
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Unmount
- ----- HyperTalk script -----
- on mouseUp
- global volume, result
- set cursor to watch
- put servermount(volume) into result
- err
- end mouseUp
-
-
- -- part 4 (button)
- -- low flags: 00
- -- high flags: 8003
- -- rect: left=37 top=138 right=160 bottom=137
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Login
- ----- HyperTalk script -----
- on mouseUp
- global volume, zone, server, result
- set cursor to watch
- put servermount(volume,zone,server) into result
- err
- end mouseUp
-
-
- -- part 6 (button)
- -- low flags: 00
- -- high flags: 8003
- -- rect: left=142 top=51 right=73 bottom=270
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Edit card script
- ----- HyperTalk script -----
- on mouseUp
- edit script of this card
- end mouseUp
-